projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cbc9f03
)
(save_window_save): Pass the new arg to Fcopy_marker.
author
Richard M. Stallman
<rms@gnu.org>
Fri, 1 Sep 1995 02:01:29 +0000
(
02:01
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Fri, 1 Sep 1995 02:01:29 +0000
(
02:01
+0000)
src/window.c
patch
|
blob
|
history
diff --git
a/src/window.c
b/src/window.c
index 4c1a5e8bee1dd71f32c5202159b69a8b8ccf94f4..8dd05a14dc0b30f1d6b7e60e50ef4c619c4a2112 100644
(file)
--- a/
src/window.c
+++ b/
src/window.c
@@
-3217,13
+3217,13
@@
save_window_save (window, vector, i)
w->buffer);
}
else
- p->pointm = Fcopy_marker (w->pointm);
+ p->pointm = Fcopy_marker (w->pointm
, Qnil
);
- p->start = Fcopy_marker (w->start);
+ p->start = Fcopy_marker (w->start
, Qnil
);
p->start_at_line_beg = w->start_at_line_beg;
tem = XBUFFER (w->buffer)->mark;
- p->mark = Fcopy_marker (tem);
+ p->mark = Fcopy_marker (tem
, Qnil
);
}
else
{